home *** CD-ROM | disk | FTP | other *** search
/ IBM InfoROM for OS/2 Beta 1995 January / IBM InfoROM for OS2 Beta 1-1995.ISO / testcert / mmedia / system / ap2 / scripts / wpr___i2.p2s < prev    next >
Encoding:
Text File  |  1994-05-11  |  688 b   |  28 lines

  1. ###############################################################
  2. # Description:  Playing full length of a wave file in a 
  3. #               specific format and check if it sounds proper.               
  4. ###############################################################
  5.  
  6. open ?AP2PATH?A8B22K.WAV alias wave1 wait
  7.  
  8. set wave1  bitspersample 8 wait
  9. status wave1  bitspersample wait
  10. =8
  11. set wave1  samplespersec 22050 wait
  12. status wave1  samplespersec wait
  13. =22050
  14.  
  15. set wave1  channels 1 wait
  16. status wave1  channels wait
  17. =1
  18.  
  19. set wave1 format tag ALAW wait
  20. status wave1 format tag wait
  21. =ALAW
  22.  
  23. play wave1 wait
  24. @CHECK Was the sound without hissing, popping?
  25.  
  26. close wave1 wait
  27.  
  28.